home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
os2
/
pvm34b3.zip
/
pvm34b3
/
pvm3
/
libfpvm
/
WIN32
/
Pvmfgettid.c
< prev
next >
Wrap
C/C++ Source or Header
|
1997-07-22
|
808b
|
44 lines
/* $Id: Pvmfgettid.c,v 1.1 1997/06/27 16:24:51 pvmsrc Exp $ */
#ifdef WIN32
#include "..\..\include\pvm3.h"
#include "..\..\src\pvmwin.h"
#else
#include "pvm3.h"
#endif
#include "pvm_consts.h"
#ifdef __WATCOMC__
#include "watforstr.h"
void __fortran
PVMFGETTID (group_str, inum, tid)
WatcomFortranStr* group_str;
int *inum, *tid;
{
char* group_ptr = group_str->strP;
int group_len = group_str->len;
#else
void __stdcall
PVMFGETTID (group_ptr,group_len, inum, tid)
char * group_ptr; int group_len;
int *inum, *tid;
{
#endif
char tgroup[MAX_GRP_NAME + 1];
/*
* Copy the group name to make sure there's
* a NUL at the end.
*/
if (ftocstr(tgroup, sizeof(tgroup), group_ptr, group_len)){
*tid = PvmBadParam;
return;
}
*tid = pvm_gettid(tgroup, *inum);
}